Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-12005 | GEN003700 | SV-64231r1_rule | ECSC-1 | Medium |
Description |
---|
Unnecessary services should be disabled to decrease the attack surface of the system. |
STIG | Date |
---|---|
Oracle Linux 5 Security Technical Implementation Guide | 2015-03-26 |
Check Text ( C-52685r1_chk ) |
---|
# ps -ef |grep xinetd If xinetd is not running, this check is not a finding. # grep -v "^#" /etc/xinetd.conf # grep disable /etc/xinetd.d/* |grep no If no active services are found, and the inetd daemon is running, this is a finding. |
Fix Text (F-54841r1_fix) |
---|
# service xinetd stop ; chkconfig xinetd off |